Included templates
python_project
python_project
Pasted files structure
├── python_project
│ ├── main.py
│ └── tests
│ └── test1.py
└── setup.py
├── python_project
│ ├── main.py
│ └── tests
│ └── test1.py
└── setup.py
Files contents
python_project.egg-info/
python_project.egg-info/
./python_project/main.py
def fun(x):
return x+2
./python_project/main.py
def fun(x):
return x+2
./python_project/tests/test1.py
from python_project.main import fun
fun(2)
./python_project/tests/test1.py
from python_project.main import fun
fun(2)
./setup.py
from setuptools import setup
setup(
name='python_project',
packages=['python_project'],
include_package_data=True,
install_requires=[
],
)
./setup.py
from setuptools import setup
setup(
name='python_project',
packages=['python_project'],
include_package_data=True,
install_requires=[
],
)